home *** CD-ROM | disk | FTP | other *** search
- /* samc04018.c */
-
- #include "teglsys.h"
-
-
- void main()
- {
- imagestkptr fs;
-
- easytegl();
-
- pushimage(1,1,100,100);
- shadowbox(1,1,100,100);
- fs = stackptr;
-
- pushimage(50,50,150,150);
- shadowbox(50,50,150,150);
-
- showmouse();
- while(mouse_buttons == 0);
-
- hideimage(fs);
- unlinkfs(fs);
- linkfs(fs,stackptr);
- showimage(fs,fs->x,fs->y);
-
- while(mouse_buttons == 0);
- abort_msg("");
- }